Merged
Conversation
Contributor
Author
|
I need to fix the workflows (See hemilabs/actions#32) so I'm placing this on draft |
0297b53 to
bdec99d
Compare
Contributor
Author
|
Workflows fixed - I had to update knip config in a0ee0a9 so they wouldn't fail 😅 |
There was a problem hiding this comment.
Pull request overview
This PR introduces automated CI/CD pipelines for the repository by adding two GitHub Actions workflows that handle testing and package publishing.
Changes:
- Adds JS Checks workflow to run linting, type checking, and tests on pull requests and pushes across Node.js versions 20, 22, and 24
- Adds NPM Publish workflow to automatically publish packages when GitHub releases are created
- Updates knip configuration to ignore eslint-config-prettier dependency
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/js-checks.yml | Configures automated testing workflow for pull requests and pushes |
| .github/workflows/npm-publish.yml | Configures automated NPM publishing on release creation |
| .knip.json | Adds eslint-config-prettier to ignored dependencies list |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
ArturDolzan
approved these changes
Jan 30, 2026
arielmergen
approved these changes
Jan 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds two GitHub Actions workflows to automate CI/CD for the repository:
JS Checks workflow (
.github/workflows/js-checks.yml): Runs linting, type checking, and tests on pull requests and pushes. Tests against Node.js versions 20, 22, and 24 to ensure compatibility.NPM Publish workflow (
.github/workflows/npm-publish.yml): Automatically publishes the package to NPM when a GitHub release is created.Both workflows use the shared Hemilabs workflow definitions for consistency across repositories.
Screenshots
N/A
Related issue(s)
N/A
Checklist